Articles by Falko Timme
-
Setting Up An NFS Server And Client On OpenSUSE 11.3
Author: Falko Timme • Tags: storage, suse • Comments: 8
Setting Up An NFS Server And Client On OpenSUSE 11.3 This guide explains how to set up an NFS server and an NFS client on OpenSUSE 11.3. NFS stands for Network File System; through NFS, a client can access (read, write) a remote share on an NFS server as if it was on the local hard disk.
-
How To Set Up Apache2 With mod_fcgid And PHP5 On Fedora 13
Author: Falko Timme • Tags: apache, fedora, php • Comments: 0
How To Set Up Apache2 With mod_fcgid And PHP5 On Fedora 13 This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Fedora 13. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.
-
How To Set Up WebDAV With Apache2 On OpenSUSE 11.3
Author: Falko Timme • Tags: apache, suse • Comments: 1
How To Set Up WebDAV With Apache2 On OpenSUSE 11.3 This guide explains how to set up WebDAV with Apache2 on an OpenSUSE 11.3 server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the Apache server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.
-
-
Creating An NFS-Like Standalone Storage Server With GlusterFS On Ubuntu 10.04
Author: Falko Timme • Tags: storage, ubuntu • Comments: 1
Creating An NFS-Like Standalone Storage Server With GlusterFS On Ubuntu 10.04 This tutorial shows how to set up a standalone storage server on Ubuntu 10.04. Instead of NFS, I will use GlusterFS here. The client system will be able to access the storage as if it was a local filesystem. GlusterFS is a clustered file-system capable of scaling to several peta-bytes. It aggregates various storage bricks over Infiniband RDMA or TCP/IP interconnect into one large parallel network file system. Storage bricks can be made of any commodity hardware such as x86_64 servers with SATA-II RAID and Infiniband HBA.
-
Installing Apache2 With PHP5 And MySQL Support On Mandriva 2010.1 Spring (LAMP)
Author: Falko Timme • Tags: apache, mandriva, web server • Comments: 2
LAMP is short for Linux, Apache, MySQL, PHP. This tutorial shows how you can install an Apache2 webserver on a Mandriva 2010.1 Spring server with PHP5 support (mod_php) and MySQL support.
-
How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 10.04
Author: Falko Timme • Tags: apache, php, ubuntu • Comments: 5
How To Set Up Apache2 With mod_fcgid And PHP5 On Ubuntu 10.04 This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on Ubuntu 10.04. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.
-
How To Set Up Apache2 With mod_fcgid And PHP5 On OpenSUSE 11.3
Author: Falko Timme • Tags: apache, php, suse • Comments: 0
How To Set Up Apache2 With mod_fcgid And PHP5 On OpenSUSE 11.3 This tutorial describes how you can install Apache2 with mod_fcgid and PHP5 on OpenSUSE 11.3. mod_fcgid is a compatible alternative to the older mod_fastcgi. It lets you execute PHP scripts with the permissions of their owners instead of the Apache user.
-
Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Fedora 13
Author: Falko Timme • Tags: fedora, ftp • Comments: 0
Virtual Hosting With PureFTPd And MySQL (Incl. Quota And Bandwidth Management) On Fedora 13 This document describes how to install a PureFTPd server that uses virtual users from a MySQL database instead of real system users. This is much more performant and allows to have thousands of ftp users on a single machine. In addition to that I will show the use of quota and upload/download bandwidth limits with this setup. Passwords will be stored encrypted as MD5 strings in the database.
-
Integrating XCache Into PHP5 (Fedora 13/CentOS 5.5 & Apache2)
Author: Falko Timme • Tags: apache, centos, fedora, php • Comments: 4
Integrating XCache Into PHP5 (Fedora 13/CentOS 5.5 & Apache2) This guide explains how to integrate XCache into PHP5 on a Fedora 13 or CentOS 5.5 system (with Apache2). From the XCache project page: "XCache is a fast, stable PHP opcode cacher that has been tested and is now running on production servers under high load." It's similar to other PHP opcode cachers, such as eAccelerator and APC.
-
How To Set Up MySQL Database Replication With SSL Encryption On Debian Lenny
Author: Falko Timme • Tags: mysql, debian • Comments: 5
How To Set Up MySQL Database Replication With SSL Encryption On Debian Lenny This tutorial describes how to set up database replication in MySQL using an SSL connection for encryption (to make it impossible for hackers to sniff out passwords and data transferred between the master and slave). MySQL replication allows you to have an exact copy of a database from a master server on another server (slave), and all updates to the database on the master server are immediately replicated to the database on the slave server so that both databases are in sync. This is not a backup policy because an accidentally issued DELETE command will also be carried out on the slave; but replication can help protect against hardware failures though.